home *** CD-ROM | disk | FTP | other *** search
- ***
- *INSRUN.SCP (insr) Version 0.01 - Installs a file which is normally run directly from a CD-ROM.
- *
- *Author: T. K. Tierney
- *
- *Entry: insrFILEPATH is set to the full path of the executable file.
- *Exit: All files in the subdirectory will be copied to a new location, as specified by the user.
- *
- *Uses: HTML window 1. 640 x 480 compatible.
- *Calls: FileNameCracker (fnc)
- *
-
- debug all
- version INSRUN,0.138
-
- concat insrDOS,@$WINDOWS,"\Command.com"
-
- *Generate a page which explains what is happening.
-
- concat insrX,"
- &<p><center>This program can be run directly off the CD-ROM.</center>
- &<p><blockquote>If you do not wish to install it to your hard drive,
- &<br>click 'Cancel' now, otherwise, click OK.<blockquote>"
-
- signpost OKCancel,Installation Note.,@insrX,400,180
- if @$STATUS eq "CANCEL" goto insrExit
-
- *Generate a page which asks where to copy the files.
-
- :WherePage
-
- set fncFP,@insrFilePath
- gosub FileNameCracker
-
- concat insrDestination,"c:\",@fncName
-
- concat insrX,<blockquote><h4>Please specify destination.</h4>
- &<br><form>
- &<input type="text" size="20" value=^",@insrDestination,^" name="insrDestination"><p>
- &<input type="submit" value="OK" name="exit:?WherePageOKClick">
- &<input type="submit" value="Cancel" name="exit:?WherePageCancelClick">
- &</form></blockquote>
-
- openhtml 1,270,140
- dohtml 1,Destination directory.,@insrX,WherePageKill
-
- :WherePageKill
- :WherePageCancelClick
- gosub Quitter
- goto WherePage
-
- :WherePageOKClick
- closehtml 1
- convert insrDestination,Trim
- set fncFP,@insrDestination
- gosub FileNameCracker
-
- if @insrDestination eq ""
- scream Destination directory not specified:,@insrDestination
- goto WherePage
- endif
-
- if @fncExt ne ""
- scream Bad destination:,@insrDestination
- goto WherePage
- endif
-
- if @fncName eq ""
- concat insrDestination,@fncDrive,@fncPath
- set insrX,len @insrDestination
- set insrX,@insrX - 1
- substring insrDestinationNoSlash,@insrDestination,1,@insrX
- else
- concat insrDestinationNoSlash,@fncDrive,@fncPath,@fncName
- concat insrDestination,@insrDestinationNoSlash,"\"
- endif
-
- *See if the directory specified already exists.
-
- findfile insrX,@insrDestination
-
- if @insrX eq ""
- set insrFragment," a new "
- else
- set insrFragment," an existing "
- endif
-
- concat insrHTML,<br><center><b>Please confirm.</b><p>,
- &Are you requesting installation to<br><i>,@insrFragment,directory</i>^, named...
- &<p><center><b>,@insrDestinationNoSlash,</b></center>
-
- signpost YesNo,Confirmation.,@insrHTML,300,220
- if @$STATUS eq NO goto WherePage
-
- *If it does not exist, create it.
-
- if @insrFragment eq " a new "
- concat insrDOSCmd,"/c MD ",@insrDestinationNoSlash
- execute @insrDOS,@insrDOSCMD,,noscreen
- endif
-
- *Check to see if it now exists. If not, generate a complaint and loop back.
-
- findfile insrX,@insrDestination
-
- if @insrX eq ""
- scream "Bad destination: ",@insrDestinationNoSlash
- goto WherePage
- endif
-
- *Crack the source file path.
-
- set fncFP,@insrFilePath
- gosub FileNameCracker
- concat insrSource,@fncDrive,@fncPath,*.*
-
- *Copy the files.
-
- concat insrDOSCmd,"/c XCOPY ",@insrSource," ",@insrDestinationNoSlash," /y /s /e"
- execute @insrDOS,@insrDOSCMD,,noscreen
-
-
- *Verify that the specified file name exists in the new location.
- *If it does not exist, report a potential error in the install.
-
- concat x,<br><center><b>Installation complete.<p></b>
- &You can run this game from your hard disk via
- &<br>the Windows Explorer. Select directory
- &<p><i>,@insrDestinationNoSlash,</i>
- &<p>and run file,
- &<p><i>,@fncName,@fncExt,</i>
-
- signpost Ok,Installation Status.,@x,400,300
-
- *Clean up memory and exit.
-
- :insrExit
- release fncDrive,fncPath,fncName,fncExt,fncFP
- release insrDestination,insrDestinationNoSlash,insrDos,insrDOSCmd
- release insrFragment,insrHTML,insrSource,insrX,insrScratchFile
- exit
-
- *** Subroutines ***
-
- **
- *Sub FileNameCracker (V02) - Breaks a file name into its components. Partially implemented
- *
- *Entry: fncFP is the filepath to be cracked.
- *
- *Exit: fncStatus = TRUE if the operation worked. FALSE if it failed.
- * fncDrive = the drive part of the filepath, including the ":", possibly null.
- * fncPath = the path part of the filepath, including the trailing "\".
- * fncPathNoSlash = the path part of the filepath, excluding the trailing "\" unless it is only a slash.
- * fncName = the name part of the filepath, without the extension.
- * fncExt = the extension part of the filepath, including the ".", possibly null.
- *
-
- :FileNameCracker
-
- *Locate a drive letter.
-
- set fncPtr,1
-
- instring fncX,@fncFP,":",1
- if @fncX eq 0
- set fncDrive,""
- else
- substring fncDrive,@fncFP,@fncPtr,@fncX
- set fncPTR,@fncX + 1
- endif
-
- *locate the subdirectory section.
-
- set fncX,@fncPtr
- set fncZ,FALSE
-
- :fnc1
- instring fncY,@fncFP,"\",@fncX
- if @fncY ne 0
- set fncX,@fncY + 1
- set fncZ,TRUE
- goto fnc1
- else
- if @fncZ eq FALSE
- set fncPath,""
- else
- set fncY,@fncX - @fncPtr
- substring fncPath,@fncFP,@fncPtr,@fncY
- set fncY,@fncY - 1
- substring fncPathNoSlash,@fncFP,@fncPtr,@fncY
- if $fncPath eq "\" set fncPathNoSlash,"\"
- set fncPtr,@fncX
- endif
- endif
-
- *Locate filename and extension and extract them.
-
- clear fncExt,fncName
-
- InString fncX, @fncFP,".",@fncPtr
-
- if @fncX ne 0
- substring fncExt,@fncFP,@fncX,99
- convert fncExt,Trim
- set fncY, @fncX - @fncPtr
- if @fncY ne 0 substring fncName,@fncFP,@fncPtr,@fncY
- else
- if @fncFP ne "" substring fncName,@fncFP,@fncPtr,99
- endif
-
- *Clean up.
-
- :fncExit
- release fncPtr,fncX,fncY,fncZ
- return
-
- **
- *Sub Quitter - Checks if the user wants to kill the script.
- *
-
- :Quitter
- concat x,<br><center>Do you want really want to exit the program?</center>
- signpost yesno,Exit Program?,@x,224,144
-
- if @$status eq YES halt
-
- return
-